home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr10 / tvprompt.zip / COMMAND_.LIB < prev    next >
Text File  |  1992-05-29  |  384b  |  13 lines

  1. -- Copyright 1991,92 by Tom Moran.  Anyone may use for any purpose.
  2.  
  3. package Command_Line is
  4.  
  5.   function Parameter_Count return Natural;
  6.  
  7.   -- Parameter(0) is program name with full path
  8.   -- Parameter(i) for i in 1 .. Parameter_Count is i-th parameter
  9.   -- Parameter(i) for i > Parameter_Count is ""
  10.   function Parameter(I : in Natural) return String;
  11.  
  12. end Command_Line;
  13.